body{
    background-image: url("https://images.unsplash.com/photo-1574376407492-c3cf78231def?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: 100%;
    background-blend-mode:lighten;
    overflow-x: hidden;
}

.home-button, .ach-button {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 8px 15px;
  background-color: #232323;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  z-index: 2; /* Lower z-index to simplify stacking context */
}

.ach-button {
  left: 100px;
}

.home-button:hover, .ach-button:hover::after {
  background-color: #000000;
}

.ach-button::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #232323;
  left: 0;
  top: 0;
  border-radius: 4px;
}

.ach-button::before {
  content: "";
  background: linear-gradient(
    45deg,
    #FF0000, #FF7300, #FFFB00, #48FF00,
    #00FFD5, #002BFF, #FF00C8, #FF0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1; /* Place behind the button */
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  filter: blur(8px);
  animation: glow 20s linear infinite;
  border-radius: 4px; /* Match button's border-radius */
  opacity: 1; /* Always visible; change to 0 if you want hover effect */
}

@keyframes glow {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}

.ach-button:hover::before {
  opacity: 1; /* Ensure glow is visible on hover if opacity is initially 0 */
}

.ach-button:active {
  background: transparent;
}

h1{
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    font-size: 50px;
    color: white;
    margin-top: 15px;
    margin-bottom: 0px;
    text-shadow: 3px 3px 0px black;

}

.p_l{
  width:66%;
  height: 87.5vh;
  background-color: rgba(255, 255, 255, 0.85);
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  margin-bottom: 0%;

}

.para{
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: justify;
    text-align-last: center;
    font-size: 20px;
    padding: 8px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

/*//////*/
.btn-wrapper{
  margin-top: 6px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0%;
  justify-content: center;
  Width:500px;
  display: flex;
}

.btn {
  border: none;
  outline: none;
  color: #FFF;
  cursor: pointer;
  margin-left: 40px;
  margin-right: 40px;
  z-index: 106;
  border-radius: 50%;
  width: 180px;
  height: 180px;  
}

.btn img{
  transition: background 1s, transform 0.3s ease-out, scale 1s, box-shadow 0.3s ease;
}

.details {
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: relative;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px;
  align-items: center;
}

.btn:hover .details {
  display: block;
}
/* glow */
@keyframes glowing{
  0% {
    box-shadow: 0px 0px 35px #cc7722; 
  }
  50% {
    box-shadow: 0px 0px 35px #D8B68B;
  }
  100% {
    box-shadow: 0px 0px 35px #cc7722;
  }
}


/* hover */
.btn:hover img{
  transform: scale(1.1);
  /* animation-name: glowing; */
  animation: glowing 3s ease-in-out infinite;
}

.btn:active{
  transform: scale(1);
}

.btn img{
  z-index: 107;
  width: 182px;
  height: 182px;
  border-radius: 50%;
  position: relative;
  object-fit: cover;
  left:-7px;
  top: -1.8px;
  border-color: black;
  border-width:thick;
}





